function checkSelect(){
	opts = document.getElementsByTagName("option");
	//alert (opts.length);
	for (i=0; i<opts.length; i++){
		if (opts[i].value == 'AA'){
			opts[i].value = '';
			//alert (opts[i].value);
		}
	}
}
/*
function checkSelectEmpty(){
	sel = document.getElementsByTagName("select");
	//alert (opts.length);
	//for (i=0; i<opts.length; i++){
		if (sel[0].selected == ''){
			//opts[i].value = '';
			alert ("Sie haben noch kein Land gewählt!");
			break;
		}
	//}
}
function inputBtnChk(){
inputBtn = document.getElementsByTagName("input");
for (i=0; i<inputBtn.length; i++){
		if (inputBtn[i].type == 'image' && inputBtn[i].src.match("next.gif")){
			checkSelectEmpty();
		}
	}
}
*/