function showCountrySelector() {
	if(!document.getElementById("CountrySelectorDrop").style.display) {
		document.getElementById("CountrySelectorDrop").style.display = "inline";
	} else if(document.getElementById("CountrySelectorDrop").style.display == "none") {
		document.getElementById("CountrySelectorDrop").style.display = "inline";
	} else {
	document.getElementById("CountrySelectorDrop").style.display = "none";
	}
}
