
function changeRegion() {
	var field = document.getElementById('otterRegionSelect');
	var url = location.href.substring(location.href.lastIndexOf('/')+1);
	
	if (field.value == "http://www.otterbox.com/") {
		url = "http://www.otterbox.com/";
	} else {
		url = (location.protocol + '//' + location.hostname + '/' + field.value + '/' + url);
	}
	location.href = url;
}