function MyCheckForm2(thisform) {
	var selectedindex = thisform.country.selectedIndex;
	var countryvalue = thisform.country[selectedindex].value;

	if (countryvalue == "AT") {
		location.href="https://unicef.at/zahlschein.html?spendenbetrag=0&ac=156141&sfa=1"; 
		return false;
	}
	else if (countryvalue == "DE") {
		location.href="http://www.schulenfuerafrika.de/";
		return false;
	}
	else if (countryvalue == "CA") {
		location.href="http://www.trickortreatforunicef.ca/";
		return false;
	}
	else if (countryvalue == "US") {
		location.href="https://secure.unicefusa.org/site/Donation2?idb=1348918864&df_id=2681&2681.donation=form1";
		return false;
	}	
	else {
		thisform.action="http://www.supportunicef.org/site/lookup.asp?c=9fLEJSOALpE&b=4196885"; 
	}

 	
 	return true;
} 


