<!--
	
function ocultar_localidades()
{

$('#suggestions').hide();
}

function lookup_vuelos(inputString,campo_aero) {
	  

		if(inputString.length == 0) {
			// Hide the suggestion box.
			$('#suggestions').hide();
		} else {
			$('#suggestions').load("index.php?jump=autocomplete_vuelos", {queryString: ""+inputString+"",campo: ""+campo_aero+""}, function(data){
				if(data.length >0) {
					$('#suggestions').show();
					$('#autoSuggestionsList').html(data);
					
				}
				 
			});
		}
	} // lookup
	
function fill_vuelos(thisValue,campo) {
		$('#'+campo).val(thisValue);
		setTimeout("$('#suggestions').hide();", 200);
	}
function ocultar_vuelos()
{

$('#suggestions').hide();
}
-->
