function GoPlz()
{
  var wert = document.form1.plz.value;
  if (wert == "BHV")
  {
    document.form1.standort.value = "Bremerhaven";
    document.form1.pbStandort.style.backgroundColor = "#bfe4ec";
  } 
  else if (wert=="CUX")
  {
    document.form1.standort.value = "Cuxhaven";
    document.form1.pbStandort.style.backgroundColor = "#bfe4ec";
  }
  else if (wert=="HEM")
  {
    document.form1.standort.value = "Hemmoor";
    document.form1.pbStandort.style.backgroundColor = "#bfe4ec";
  }
  else if (wert=="OTT")
  {
    document.form1.standort.value = "Otterndorf";
    document.form1.pbStandort.style.backgroundColor = "#bfe4ec";
  }
  else
  {
    document.form1.standort.form.reset();
    document.form1.pbStandort.style.backgroundColor = "#eeeeee";
  }
}

function GoOrt()
{
  var wert = document.form1.ort.value;
  if (wert == "BHV")
  {
    document.form1.standort.value = "Bremerhaven";
    document.form1.pbStandort.style.backgroundColor = "#bfe4ec";
  } 
  else if (wert=="CUX")
  {
    document.form1.standort.value = "Cuxhaven";
    document.form1.pbStandort.style.backgroundColor = "#bfe4ec";
  }
  else if (wert=="HEM")
  {
    document.form1.standort.value = "Hemmoor";
    document.form1.pbStandort.style.backgroundColor = "#bfe4ec";
  }
  else if (wert=="OTT")
  {
    document.form1.standort.value = "Otterndorf";
    document.form1.pbStandort.style.backgroundColor = "#bfe4ec";
  }
  else
  {
    document.form1.standort.form.reset();
    document.form1.pbStandort.style.backgroundColor = "#eeeeee";
  }
}

function GoStandort()
{
  var wert = document.form1.standort.value;
  if (wert == "Bremerhaven")
  {
    window.location="http://arge-jobcenter-cuxhaven.de/standort_bremerhaven.html";
  } 
  else if (wert=="Cuxhaven")
  {
    window.location="http://arge-jobcenter-cuxhaven.de/standort_cuxhaven.html";
  }
  else if (wert=="Hemmoor")
  {
    window.location="http://arge-jobcenter-cuxhaven.de/standort_hemmoor.html";
  }
  else if (wert=="Otterndorf")
  {
    window.location="http://arge-jobcenter-cuxhaven.de/standort_otterndorf.html";
  }
}