selList2 = new Array("Sort City by  ","","NCR ", "ncr.php","Baguio ","baguio.php","Batangas ","batangas.php","Bohol ","bohol.php","Cavite ","cavite.php","Pampanga ","pampanga.php","Cebu ","cebu.php","Davao ","davao.php","Ormoc ","ormoc.php","Tacloban ","tacloban.php","Show the whole list ","service_hotspots.php");
selList3 = new Array("Sort Category by  ", "","Airport / Terminal ","airport.php","Building ","building.php","Cafe's & Restaurant ","cafe.php","Hotels ","hotels.php","Shopping Malls ","shop.php","Show the whole list ","service_hotspots.php");

function fillSel(selObj)
{
   var i = j = 0;
   var newItem;
   var src;
   var srcName = "";

   for (i = 0; i < selObj.length; i++)
      if (selObj.options[i].selected)
         srcName = selObj.options[i].value;

   src = eval(srcName);

   with (document.cascade.destList) 
   {
      options.length = 0;
      for (i = 0; i < src.length; i++)
      {

         newItem = options.length;
   	     options[newItem] = new Option(src[i]);
         options[newItem].value = src[i+1];
         i++;
      }
      options[0].selected = true;
   }
   if (!isOk) history.go(0);
}


function doSel(selObj)
{
  for (i = 1; i < selObj.length; i++)
    if (selObj.options[i].selected)
       location.href = selObj.options[i].value;
}
