// Here, we are just watching for the region_select select element to CHANGE:
function selectLocation() {
	// When it does change, call the function 'jumpToUrl';
	var regionSelect = document.getElementById('region_select');
	regionSelect.style.display = 'inline';
	regionSelect.onchange = jumpToUrl;
}

// This function just changes the url of the current page to whatever's selected in the region_select' element:
function jumpToUrl() {
	window.location = document.getElementById('region_select').value;
}