diff --git a/themes/bootstrap3/js/common.js b/themes/bootstrap3/js/common.js
index 3635da1d85ffdf679ebf4de8b432da2e7fca7da5..24cb458c1754ffa815a92bb3fa24ccfa5b1b5466 100644
--- a/themes/bootstrap3/js/common.js
+++ b/themes/bootstrap3/js/common.js
@@ -252,8 +252,7 @@ function setupAutocomplete() {
     maxResults: 10,
     loadingString: VuFind.translate('loading') + '...',
     // Auto-submit selected item
-    callback: function autoSubmitAC(item, input, et) {
-      console.log("ac callback", item.value);
+    callback: function autoSubmitAC(item, input) {
       input.val(item.value);
       $("#searchForm").submit();
       return false;