   function getSelectedValue(list) {
        if (list.options[list.selectedIndex].value == "") {
        return;
        }
        else {
        location.href = list.options[list.selectedIndex].value;
        }
   }

