A ver si esta funcion te ayuda:
Código:
function EstablecerFechaActual(nomForm, d, m, a)
{
var hoy = new Date();
this.document.forms[nomForm].elements[d].selectedIndex = hoy.getDate()-1;
this.document.forms[nomForm].elements[m].selectedIndex = hoy.getMonth();
this.document.forms[nomForm].elements[a].selectedIndex = hoy.getYear()-2005;
}