function update_frame(myoptions) 
{
        destination = myoptions[myoptions.selectedIndex].value;
        if (destination == "null")
        {
                return true;
        }
        window.open(destination, '_top');


        return true;
}