function redirectPage(dropdownList)
{
    if( dropdownList.selectedIndex > 0 )
    { 
        document.location= dropdownList.value;
        dropdownList.selectedIndex = 0;
    }                
}
