function produktwechsel() {
    index=document.getElementById("produktliste").selectedIndex;
    url=document.getElementById("produktliste").options[index].value;
    
	if (url != "default") {
		self.location.href = url;
	}
}

