function wasserstand()
{    
    for (var i = 1; i < document.Wasserstand.fluss.options.length; i++)    
    {        
        if(document.Wasserstand.fluss.options[i].selected == true)        
        {            
            document.getElementById(document.Wasserstand.fluss.options[i].value).style.display = 'block';        
        }        
        else        
        {            
            document.getElementById(document.Wasserstand.fluss.options[i].value).style.display = 'none';        
        }    
    }
}