<!--
	function lookup(inputString) {
	  
	    

		if(inputString.length == 0) {
			// Hide the suggestion box.
			$('#suggestions').hide();
		} else {
			$.post("index.php?jump=autocomplete_location", {queryString: ""+inputString+""}, function(data){
				if(data.length >0) {
					$('#suggestions').show();
					$('#autoSuggestionsList').html(data);
					
				}
				 
			});
		}
	} // lookup
	
function fill(thisValue) {
		$('#localidad').val(thisValue);
		setTimeout("$('#suggestions').hide();", 200);
	}
function coger_id_poblacion(thisValue) {
		$('#id_localidad').val(thisValue);
	}
function borrar_id_poblacion() {
		$('#id_localidad').val("");
	}

function ocultar_localidades()
{

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

function lookup_vuelos(inputString,campo_aero) {
	  
	    

		if(inputString.length == 0) {
			// Hide the suggestion box.
			$('#suggestions').hide();
		} else {
			$.post("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();
}
-->