Just a small little mod. I recently implemented site search and I noticed a lot of searches were for Enter Search Keywords which is the hint text in the search box.

I managed to fix this by editing includes/templates/MYTEMPLATE/sideboxes/tpl_search.php

The line that says:
Code:
$content .= zen_draw_form('quick_find', zen_href_link(FILENAME_ADVANCED_SEARCH_RESULT, '',$request_type, false), 'get');
Change to:
Code:
  $content .= '<form name="quick_find" action="' . zen_href_link(FILENAME_ADVANCED_SEARCH_RESULT, '',$request_type, false) .'" method="get" onsubmit="if (document.quick_find.keyword.value == \'' . HEADER_SEARCH_DEFAULT_TEXT . '\') return false;">';