$(document).ready(function(){
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;

	sValue = sValue.split("<span>")[1];
	sValue = sValue.split("</span>")[0];
	
	
  	//alert("The value you selected was: " + sValue);
  }

  function selectItem(li) {
    	findValue(li);
  }

  function formatItem(row) {
    	return row[0];
		
		
		//+ " (id: " + row[1] + ")";
  }

  function lookupAjax(){
	
	 string = $("#termo")[0].autocompleter.split("<span>")[1];
	string = string.split("</span>")[0];
	
	
  	var oSuggest = string;
	
    oSuggest.findValue();
	
	
  	return false;
  } 
  
  
    $("#termo").autocomplete(
      "../temp/auto_completar.asp",
      {		  	
  			delay:10,
  			minChars:2,
  			matchSubset:1,
  			matchContains:1,
  			cacheLength:10,
  			onItemSelect:selectItem,
  			onFindValue:findValue,
  			formatItem:formatItem,
  			autoFill:true
  		}
    );
});
