function MyCheckForm(thisform) {
	var selectedindex = thisform.country.selectedIndex;
	var countryvalue = thisform.country[selectedindex].value;

	if (countryvalue == "GB") {
		location.href="http://www.unicef.org.uk/choosetap/"; 
		return false;
	}
	else if (countryvalue == "US") {
		location.href="http://www.tapproject.org/donate/index.html";
		return false;
	}				
	else {
		thisform.action="http://www.supportunicef.org/site/lookup.asp?c=9fLEJSOALpE&b=5906439"; 
	}
 	
 	return true;
} 


