var now = addDays( new Date(),7);
var day =now.getDate();
var month = now.getMonth(); 

var Ret=addDays( new Date(),14);
var retday=Ret.getDate();
var retmonth=Ret.getMonth();


function setDrops(theForm) {

   theForm.arrivalDay.selectedIndex = day;
   theForm.arrivalMonth.selectedIndex = month;
   theForm.departureDay.selectedIndex = retday;
   theForm.departureMonth.selectedIndex = retmonth;
}

function addDays(myDate,days) {
    return new Date(myDate.getTime() + days*24*60*60*1000);
}