﻿$().ready(function() {

	
	
	$("#txtDestination").autocomplete("http://www.vivalapaz.net/espanol/booking/ver20/search.aspx?Parameter=BusquedaCiudad", {
		width: 200,
		minChars: 2,
		delay:200,
		cacheLength:15,
		mustMatch:false,
		selectFirst: true
	});
	
	
	$("#txtDestination").result(function(event, data, formatted) {
		if (data)
		    {
		    
		        $("#txtDestination").val(data[1]);
		    }
			
	});
	

	
});




