function doredirect(sel)  {
        var x=0;
        while (x<sel.options.length)  {
                if (sel.options[x].selected)  { 
                        location.href="http://"+ sel.options[x].value;
                }
                x++;
        }
}
