// JavaScript Document
function findValue(li) {
    var sValue = li.selectValue;
	window.location.href = 'results.php?search='+sValue;
}

function selectItem(li) {
	findValue(li);
}

function formatItem(row) {
	return row[0] + " (id: " + row[1] + ")";
}
function lookupLocal(){
	var oSuggest = $("#CityLocal")[0].autocompleter;

	oSuggest.findValue();

	return false;
}

$(document).ready(function() {
	$("#CityLocal").autocompleteArray(
		[
			"Atreus Clothing","Matix"
		],
		{
			delay:10,
			minChars:1,
			matchSubset:1,
			//onItemSelect:selectItem,
			onFindValue:findValue,
			autoFill:true,
			maxItemsToShow:4
		}
	);
});