function QuickJump(Formular){
	var Element = Formular.Ziel.selectedIndex;
	if (Formular.Ziel.options[Element].value != 0) {
		window.location.href = Formular.Ziel.options[Element].value;
		//window.open(Formular.Ziel.options[Element].value);
	}
}
