diff --git a/tomcat/webapps/Trawl/index.jsp b/tomcat/webapps/Trawl/index.jsp
index d01909bce750b7ca458ee51cb98bed18dbf6c14d..78d1f6581fc9459395b1e52478934be2c90c8146 100644
--- a/tomcat/webapps/Trawl/index.jsp
+++ b/tomcat/webapps/Trawl/index.jsp
@@ -78,8 +78,6 @@ Double Handle Slider Modified from: http://jqueryui.com/slider/#range
 
         <section id="outputWrapper">
             <section id="outputDetails">
-                Found x results (x seconds)<br>
-                Total population:</bold> 66122855<br>
                 <!--  Stuff like population count, entries found, etc. go here -->
             </section>
 
diff --git a/tomcat/webapps/Trawl/script.js b/tomcat/webapps/Trawl/script.js
index 85f8f3dc4dcb2006b494deb0bd2940b962ddfe8e..06b7c59491addf0960d6a9b7579c300ecb37df78 100644
--- a/tomcat/webapps/Trawl/script.js
+++ b/tomcat/webapps/Trawl/script.js
@@ -126,6 +126,7 @@ function reqHistogram(params){
          if (xhr.readyState == XMLHttpRequest.DONE && xhr.status == 200) {
              var nodeList = JSON.parse(this.responseText);
              histogram(nodeList["x"], nodeList["y"]);
+             document.getElementById("outputDetails").innerHTML = "Found " + nodeList["n"] + " results " + "(" + nodeList["time"] + " seconds)<br> Total Population: " + nodeList["individualCount"];
          }
          else {
              console.log("Server Response: Error"); //RME