﻿function RedirectFromDropDownList(currentDropDownList)
{
    if (currentDropDownList)
    {
        if (currentDropDownList.selectedIndex)
        {
            var dropdownIndex = currentDropDownList.selectedIndex;
            if (currentDropDownList[dropdownIndex] && currentDropDownList[dropdownIndex].value)
            {
                var dropdownValue = currentDropDownList[dropdownIndex].value;
                window.location = dropdownValue;
            }
        }
    }
}