var now = new Date();
var day = now.getDate();
var month = now.getMonth()+1;
function setDrops(theForm) {
theForm.daySelect.selectedIndex = day;
theForm.monthSelect.selectedIndex = month;
}