function changeCountry(dropDownList) {
	
	if (dropDownList.value == "") {
		document.bestellForm.IdLand.style.visibility="visible";
	}
	else {
		document.bestellForm.IdLand.style.visibility="hidden";
	}
	
}

