// JavaScript Document
<!--
$(document).ready(function() {
	$('#search_country').change(function(){
		$.ajax({type:"POST", url:"/map/get_regions.php", data:"d=" + $(this).find(':selected').val(), success:function(msg){
			$('#search_regions').html('<option value="">All Regions</option>' + msg);
		}});
	});
	
	if($('#search_country').find(':selected').val() != ''){
		var search_regions_val = $('#search_regions').find(':selected').val();
		$.ajax({type:"POST", url:"/map/get_regions.php", data:"d=" + $('#search_country').find(':selected').val(), success:function(msg){
			$('#search_regions').html('<option value="">All Regions</option>' + msg);
			$('#search_regions').children().each(function(){
				if($(this).val() == search_regions_val){
					$(this).attr("selected", "selected");
				}
			});
		}});
	}
})
$(window).load(function(){
	
});
