  function addOption (entry) {
    var newEntry = new Option(entry, entry, false, true);
    document.contact_form.fahrzeuguebergabe.options[document.contact_form.fahrzeuguebergabe.length] = newEntry;
  }

  function changePlace() {
    if (document.contact_form.fahrzeugtyp.value == "VW T5 Multivan 7 Sitzer gehobene Ausstattung") {
      addOption ("Frankfurt a.M., Rhein-Main-Gebiet");
      document.contact_form.fahrzeuguebergabe.selectedIndex = 0;
    }
    else {
      if (document.contact_form.fahrzeuguebergabe.length == 5)
        document.contact_form.fahrzeuguebergabe.length--;
        document.contact_form.fahrzeuguebergabe.selectedIndex = 0;
    }
  }
