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 formatItem(row) {
	return row[0] + " (id: " + row[1] + ")";
}

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

	oSuggest.findValue();

	return false;
}

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

	oSuggest.findValue();

	return false;
}

$(document).ready(function() {
	/*
	$("#CityAjax").autocomplete(
		"autocomplete_ajax.cfm",
		{
			delay:10,
			minChars:2,
			matchSubset:1,
			matchContains:1,
			cacheLength:10,
			onItemSelect:selectItem,
			onFindValue:findValue,
			formatItem:formatItem,
			autoFill:true
		}
	);
	*/
	$("#service").autocompleteArray(
		["Accountant","Advertising Content Writer","Appraiser","Armenian Tutor","Babysitter","Bartender","Bookkeeper ","Caregiver","Carpenter","Chinese Tutor ","Cleaner","Contractor","Copywriter ","Dance Instructor","Data Entry Specialist","DJ","Dutch Tutor","Electrician","Engineering Writer","English Tutor","Financial Planner","French Tutor","Gardner","German Tutor ","Ghost Writer ","Graphic Designer","Greek Tutor ","Handyman","Hebrew Tutor","Home Care","Home Stager","Inspector ","Interior Decorator","IT Consultant","Italian Tutor","Japanese Tutor","Journalist","Korean Tutor","Landscaper","Lawyer","Legal Professional","Loan Officer","Maid","Manuscript Editor","Marketing Writer","Math Tutor","Medical Writer ","Mortgage Specialist","Mover","Music Instructor","Nanny","Network Administrator","Norwegian Tutor","Nurse","Office Assistant","Painter","Paranormal Investigator","Party Planner","Patient Care","Pet Groomer","Pet Sitter","Pet Trainer","Pet Walker","Photographer","Plumber","Polish Tutor","Portuguese Tutor","Project Manager","Property Manager","Public Relations Writer","Real Estate Agent","Real Estate Broker","Recruiter","Roofer ","Russian Tutor","SAT\/ACT Tutor","Science Tutor","Script Writer ","SEO","Spanish Tutor","Swahili Tutor","Swedish Tutor","Tagalog Tutor","Tax Specialist","Technical Writer ","Technician","Thai Tutor","Tibetan Tutor","Translator","Turkish Tutor","Unix/Linux Professional ","Urdu Tutor","Videographer","Vietnamese Tutor","Virtual Assistant","Web Designer","Web Developer","Wedding Planner","Windows Office 2003 & 2007 Pro.","Writing Trainer/Coach","Writing Tutor","Yoga Instructor"],
		{
			delay:10,
			minChars:1,
			matchSubset:1,
			//onItemSelect:selectItem,
			onFindValue:findValue,
			autoFill:true,
			maxItemsToShow:10
		}
	);
});
