function pickToday( )
{
    var today = new Date();
    var form = document.form;
    form.month.selectedIndex = today.getMonth();
    form.day.selectedIndex = today.getDate()-1;
}
