function process_form() {
  thisForm=document.SearchForm;
  thisForm.inMonth.value=thisForm.arrivalDateMonth.options[thisForm.arrivalDateMonth.selectedIndex].value;
  thisForm.inDay.value=thisForm.arrivalDateDay.options[thisForm.arrivalDateDay.selectedIndex].value;
  thisForm.inYear.value=thisForm.arrivalDateYear.options[thisForm.arrivalDateYear.selectedIndex].value;
  thisForm.outMonth.value=thisForm.departureDateMonth.options[thisForm.departureDateMonth.selectedIndex].value;
  thisForm.outDay.value=thisForm.departureDateDay.options[thisForm.departureDateDay.selectedIndex].value ;
  thisForm.outYear.value=thisForm.departureDateYear.options[thisForm.departureDateYear.selectedIndex].value;
  
  thisForm.destinationID.value=getDestinationID(thisForm.cityId.value);
  setInternational(thisForm);
}

function getDestinationID(mycity) {
  var destination='';
  switch (mycity.toUpperCase())
  {
    case "AMSTERDAM" : 
          destination='213eba87-5d1c-4694-b7c5-b08c3033beca'; break;
    case "BARCELONA" : 
          destination='63a6d29d-1660-4ad6-8faf-2bb20b9f114d'; break;
    case "DUBLIN" : 
          destination='48c998e1-f678-4db4-a505-33592852defe'; break;
    case "MIAMI" : 
          destination='af53dbe5-b7df-4960-9de3-d373dbb1da36'; break;
    case "MIAMI BEACH" :  
          destination='58c4c123-d16e-430e-8962-572f0940c21d'; break;
    case "SOUTH BEACH": 
          destination='e328249e-cd93-47e7-b77b-ce1f1341b6e0'; break;
    case "HONG KONG" :  
          destination='68678448-0bc9-4df9-beed-c7ac46d82cee'; break;
    case "ROME" :  
          destination='a117d333-7373-719e-c8b2-bb5e43907ff4'; break;
    case "VENICE" :  
          destination='a1158333-6ed7-869e-c712-a280ec907f93'; break;
    default : 
          destination=''; break;    
  }
  return destination;
}

function setInternational(thisForm) {
  var cID=thisForm.cityId.value;
  var sID=thisForm.stateId.value;
      cID=cID.toUpperCase();
      sID=sID.toUpperCase();  
  if((cID=='AMSTERDAM')&&(sID=='NL')) {
    thisForm.countryId.value=thisForm.stateId.value;
    thisForm.stateId.value='';
  }
  if((cID=='BARCELONA')&&(sID=='ES')) {
    thisForm.countryId.value=thisForm.stateId.value;
    thisForm.stateId.value='';
  }
  if((cID=='BERLIN')&&(sID=='DE')) {
    thisForm.countryId.value=thisForm.stateId.value;
    thisForm.stateId.value='';
  }
  if((cID=='DUBLIN')&&(sID=='IE')) {
    thisForm.countryId.value=thisForm.stateId.value;
    thisForm.stateId.value='';
  }
  if((cID=='HONG KONG')&&(sID=='HK')) {
    thisForm.countryId.value=thisForm.stateId.value;
    thisForm.stateId.value='';
  }
  if((cID=='ROME')&&(sID=='IT')) {
    thisForm.countryId.value=thisForm.stateId.value;
    thisForm.stateId.value='';
  }
  if((cID=='VENICE')&&(sID=='IT')) {
    thisForm.countryId.value=thisForm.stateId.value;
    thisForm.stateId.value='';
  }
}