var Site_Base_URL = document.getElementById('Site_Base_URL').value;
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;
	//alert("The value you selected was: " + sValue);
}

function selectItem(li) 
{
	findValue(li);
}

function formatHotelItem(row) {
return row[0];
}

$("#market").autocomplete(
Site_Base_URL+"/autosuggest/city_suggest.php",
{
delay:10,
minChars:3,
matchSubset:1,
matchContains:1,
cacheLength:10,
onItemSelect:selectItem,
onFindValue:findValue,
formatItem:formatHotelItem,
autoFill:true
}
);
