function validateCountry(){
	if(document.choosecountry.country.value=="" || document.choosecountry.country.value==null){
		alert("Please choose a country");
		return false;
	}
	return true;
}