/* Start form action on select option release */

function call_page(form)
{
  var counter=form.select1.selectedIndex
  if (form.select1.options[counter].value != "0")
  {
    location=form.select1.options[counter].value;
    alert(location);
  }
} 
