// JavaScript Document
        function Visit(form, i) {
        // get the URL from options
        var site = form.elements[i].selectedIndex;
        // if it's not the first (null) option, go there
        if( site >= 1 ) {
               top.location = form.elements[i].options[site].value;
                }
        // and then reselect the null (it functions as a label)
        form.elements[i].selectedIndex = 0;
        }