function welcheSuche()
{
	for(x=0; x<=1; x++)
	{
		if(document.forms["wohin"].pfad[x].checked)
			{
			document.getElementById("wohin"+x).style.display="block";
			//alert("wohin"+x);
		} else
			{
			document.getElementById("wohin"+x).style.display="none";
		}
	}
}