function SprawdzCzesci() {
var valid = 1;
if (document.Czesci.marki_modele.value == "")
valid = 0;
if (document.Czesci.kategoria.value == "" || document.Czesci.kategoria.value == "wybierz")
valid = 0;
if (document.Czesci.podkategoria.options[0].selected == true)
valid = 0;
if (document.Czesci.cena.value == "")
valid = 0;
if (document.Czesci.wojewodztwo.value == "" || document.Czesci.wojewodztwo.value == "wybierz")
valid = 0;
if (document.Czesci.telefon.value == "")
valid = 0;
if (!valid)
alert("Proszę wypełnić wszystkie pozycje zaznaczone na czerwono.");
else
document.Czesci.submit();
}