function chk_payment(formularz)
{
  if (formularz.platnosc.value==0)
  {
    alert("Please, choose the payment method!")
    return false
  }
  formularz.submit()
}

