function zmenRadek (radek) {
	idselect=document.getElementById("obj_"+radek);
	cena=pole[idselect.value];

	document.getElementById("c_puv"+radek).value=cena;
	cena_nov=cena-(cena/100*sleva);
	document.getElementById("c_nov"+radek).value=cena_nov;
	cena_usp=cena-cena_nov;
	document.getElementById("c_usp"+radek).value=cena_usp;
}