function changeLang (list) {
	//find out lang
	var lang = list.options[list.selectedIndex].value;
	if(lang == "English") {
		location.href = "/emea/"
	}else if(lang == "French") {
		location.href = "/emea_fr/"
	}else if(lang == "German") {
		location.href = "/emea_de/"
	}else if(lang == "Spanish") {
		location.href = "/emea_es/"
	}else if(lang == "Italian") {
		location.href = "/emea_it/"
	}else{
		//do nothing
	}
}