function select_wybrany(element) {
	for (i=1;  i<element.options.length; ++i) {
		if (element.options[i].value == element.options[0].value) {element.selectedIndex = i; break;}
	}
}
