function hideSelectCountryButton()
{
	if (!document.getElementById) {
		return false;
	}
	
	if (document.getElementById('selectCountryButton')) {
		document.getElementById('selectCountryButton').style.display = 'none';
	}
	

	
}

addEvent(window, 'load', hideSelectCountryButton);