Today = new Date();
TwoWeeks = new Date();
TwoWeeks.setTime(Today.getTime() + (30*60*60*24*3));
Day = TwoWeeks.getDate();
if(Day > 0) Day = Day - 1;
Month = TwoWeeks.getMonth();
Year = TwoWeeks.getYear();
document.theForm.selDay.options[Day].selected = true;
document.theForm.selMonth.options[Month].selected = true;
x = document.theForm.selYear.length;
for(i=0;i<x;i++) {
  if(document.theForm.selYear.options[i].value == Year) {
    document.theForm.selYear.options[i].selected = true;
  }
}
