	function lookup(termo) {
		if(termo.length == 0) {
			// Hide the suggestion box.
			$('#suggestions').hide();
		} else {
			$.post("http://www.bahiatravel.com.br/modules/autocomplete/rpc.php", {queryString: ""+termo+""}, function(data){
				if(data.length >3) {
					$('#suggestions').show();
					$('#autoSuggestionsList').html(data);
				}
			});
		}
	} // lookup
	
	function fill(thisValue) {
		$('#termo').val(thisValue);
		setTimeout("$('#suggestions').hide();", 200);
	}

