// JavaScript Document

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;
}

function selectItem(li) {
	findValue(li);
}

function formatItem(row) {
	return "<div class='resultLine'>" + row[0] + " <span class='descript'>(" + row[1] + ")</span></div>";
}

function lookupAjax(){
	var oSuggest = $("#q")[0].autocompleter;

	oSuggest.findValue();

	return false;
}