<script type="text/javascript">
function findValue(li) {
	if( li == null ) return alert("No match!");

	// if coming from an AJAX call, let's use the CityId as the value
	if( !!li.extra ) var sValue = li.extra[0];

	// otherwise, let's just display the value in the text box
	else var sValue = li.selectValue;
	window.location = "/index.php?view=parfem&parfem="+ sValue;
	//alert("The value you selected was: " + sValue);
}

function selectItem(li) {
	findValue(li);
}

function formatItem(row) {
	return row[0] ; //+ " (id: " + row[1] + ")";
}

function lookupAjax(){
	var oSuggest = $("#PerfumesAjax")[0].autocompleter;

	oSuggest.findValue();

	return false;
}

$(document).ready(function() {
	$("#PerfumesAjax").autocomplete(
		"/a.php",
		{
			delay:10,
			minChars:2,
			matchSubset:0,
			matchContains:1,
			cacheLength:1,
			extraParams: {view:'PerfumeAjax'},
			onItemSelect:selectItem,
			onFindValue:findValue,
			formatItem:formatItem,
			autoFill:false
		}
	);
});
</script>
