function validateClubSearch()
{
	var optCountry=document.getElementById("optCountry");
	if(optCountry.selectedIndex == 0)
	{
		alert(errorMessageArray['errEmptyClubCountry']);
		document.getElementById("optCountry").focus();
		return false;
	}
	else
		return true;
}