function filter(url, types){
	var target = url+types.options[types.options.selectedIndex].value;
	document.location.href = target;
}

function goToUrl(select){
	var wert = select.options[select.options.selectedIndex].value;
  	document.location.href = wert;
}
