function myautocomplete(contextPath) {
	new Ajax.Autocompleter("autocomplete_name",
          				"choices",
                        contextPath+"/restaurant/autocomplete",
                        {minChars: 1, callback:function(element, entry) 
                        	{return entry + "&cuisineselect=" + document.getElementById('cuisineselect').value + "&neighborhoodselect=" + document.getElementById('neighborhoodselect').value + "&metroareaShortName=" + document.getElementById('metroareaShortName').value}
                        }
        );
       
}
	
          
