// JavaScript Document

function chkFormular () {
  if (document.andern.adult.value == "0" || document.andern.jugend.value == "0" ) {
    alert("Bitte wählen Sie die Anzahl der Reisenden aus");
    document.andern.adult.focus();
    return false;
  }
  }

