function updateDestinos(elem)
{
	location_parent = elem.value;

	$.ajax({
		type: "POST",
		url: "/index.php?m=destinos&action=display_location",
		data: "location_parent="+location_parent,
		success: function(msg){
			$('#destinos').html(msg);
			$('#destinos').append('<option value="-1" >- Otro destino -</option>');
		}
	});
}
