$().ready(function() {
	$("#destino").autocomplete("search.php", {
		width: 260,
		selectFirst: false
	});

	$("#destino").result(function(event, data, formatted) {
		if (data)
			$(this).next().val(data[1]);
	});
});