function getRegionNames(){
	$.ajax({
		type: "GET",
		url: "/scripts/regionAjax.php",
		data: "regionsDropdown=true",
		success: function(msg){
			$('#flashMap_links').html(msg);
		}
	});
}

function getRegionTerritories(region){
	$.ajax({
		type: "GET",
		url: "/scripts/regionAjax.php",
		data: "regionDropdown=" + escape(region),
		success: function(msg){
			$('#flashMap_links').html(msg);
		}
	});
}

function territoriesListChange(){
	var changeTo = document.getElementById('territoriesList').value;
	if(changeTo == 'regionList'){
		getRegionNames();
	}
	else if(changeTo != ''){
		location.href = changeTo;
	}
}

$(document).ready(function(){
	getRegionNames();
});