<!--
function goChange() {
	var site = document.country.name[document.country.name.selectedIndex].value;
	if (site == "") { 
		alert("Please select a Country first.");
	} 
	else
	{
		location.href = "http://www.syngenta.com/country/index_en.asp?name=" + document.country.name[document.country.name.selectedIndex].value;
	}
}
//-->

