// Advanced Search Form
$(document).ready( function() {

	$('#search_destination_country').change( function() {
		$.ajax({
			url: '/advanced_search/update_lander_destination_options?value=' + $(this).val(),
			type: 'GET',
			dataType: 'html',
			success: function(data) {
				$('#search_destination_region').html(data);
			}
		});
	} );

	$('#search_destination_region').change( function() {
		$.ajax({
			url: '/advanced_search/update_lander_destination_options?value=' + $(this).val(),
			type: 'GET',
			dataType: 'html',
			success: function(data) {
				$('#search_destination_town').html(data);
			}
		});
	} );

});