$( document ).ready( function() {
	$('#searchButton').before(' <label for="searchType"> using </label><select id="searchType" name="searchType"><option value="strAnyWords">Any of the terms</option><option value="strExactPhrase">The exact phrase</option></select> ');
	$( '#searchType' ).change( function()
	{
		$('#searchTerms').attr('name', this.value);
		return false;
	});
});     
