$(document).ready(function() {
       //var  city = $("#inputBox").val();
	$("#inputBox").autoSuggest({
		ajaxFilePath : baseUrl+"/index/searchcities", // path to the ajax server file
		//ajaxParams   : "city="+city, // attach all other extra parameters to send to ajaxFilepath
		autoFill	 : false,   // true, false
                width		 : "auto", // auto(obj width), any integer eg : 100px;
                opacity		 : "0.9", // opacity can be anything from 0.1 to 1.0
		limit		 : "10",   // auto(10 records), any integer
		idHolder	 : "inputBox",   // auto(10 records), any integer
		match		 : "contains" // starts,contains,ends
	});	
});
