function selChange(theSel,baseURL,targetWin)
{
  var currSel=theSel.selectedIndex;

  if(currSel==0)
        return;
     var currURL=theSel.options[currSel].value;
  baseURL=baseURL.substring(0,baseURL.lastIndexOf("/")+1);
  targetWin.location.href=baseURL+currURL;

  theSel.selectedIndex=0;
}