diff --git a/tomcat/webapps/Trawl/script.js b/tomcat/webapps/Trawl/script.js
index 971596ece4fbcc2657e34f8c46c9dd84254db6c3..ba7a75eb7a024b9dce4538f8930b9c42ed2df791 100644
--- a/tomcat/webapps/Trawl/script.js
+++ b/tomcat/webapps/Trawl/script.js
@@ -41,11 +41,11 @@ function post(path, params) {
 function getChildren(id) {
     document.getElementById("console").innerHTML += "In | getChildren()<br>"; //TODO: Console REMOVEME
     var nodeList;
-    nodeList = {
-        "taxonId":[1821,51,1065],
-        "taxonName":["Chordata","Mollusca","Arthropoda"]
-    };
-    //nodeList = post('doBioLookup.do', { taxid: id});    // {taxid: intID}
+    //nodeList = {
+    //    "taxonId":[1821,51,1065],
+    //    "taxonName":["Chordata","Mollusca","Arthropoda"]
+    //};
+    nodeList = post('doBioLookup.do', { taxid: id});    // {taxid: intID}
     return nodeList;
 }