function mover(ele) {
	ele.style.backgroundColor = '#346494';
	ele.getElementsByTagName('a')[0].style.color = '#ffffff';
	
}

function mout(ele) {
	ele.style.backgroundColor = '#c0dbff';
	ele.getElementsByTagName('a')[0].style.color = '#346494';	
	
}

function Go (select) {
  var wert = select.options[select.options.selectedIndex].value;
  if (wert == "leer") {
    select.form.reset();
    return;
    } 
  else 
         {
/*          alert(wert); */
       location.href = '/vjz'+wert;
       }
}