function check(formularz){	
	if (!formularz.elements[0].selectedIndex){
		alert("Musisz wybrać opcję z listy rozwijalnej.");
		formularz.elements[0].focus();
		return false;
	}
}