function changeLocale(selectElement) {
	var url;
	
	if (selectElement.value == 'traditional-chinese' || selectElement.value == 'simplified-chinese') {
		document.location.href = 'http://www.tomtom.com.tw/';
		return false;
	}
	
	// Remove anchor from url if present
	url = document.location.href;
	if (url.indexOf('#') > -1) {
		url = url.substr(0, url.indexOf('#'));
	}

	paramSeperator = url.indexOf('?')>-1?'&':'?';
	if (url.indexOf('Lid=') > -1) {
		selectElement.form.action = url.replace(/Lid=[0-9]+/, 'Lid='+selectElement.value);
	}
	else {
		selectElement.form.action = url + paramSeperator + 'Lid=' + selectElement.value;
	}
	
	paramSeperator = '&';
	if (url.indexOf('selector=') == -1) {
		selectElement.form.action = selectElement.form.action + paramSeperator + 'selector=true';
	}
	
	document.location.href = selectElement.form.action;
	return false;
}