Hola, raulco.
¿Te serviría este código...?
Código HTML:
<html>
<head>
<script>
function ini() {
fecha = new Date();
d = fecha.getDate();
m = fecha.getMonth();
a = fecha.getYear();
document.getElementById('dia').selectedIndex=d-1;
document.getElementById('mes').selectedIndex=m;
document.getElementById('anio').selectedIndex=a-2004;
}
</script>
</head>
<body onload="ini()">
<select id="dia">
<option>1</option>
<option>2</option>
<option>30</option>
<option>31/option>
</select>
<select id="mes">
<option>enero</option>
<option>febrero</option>
<option>noviembre</option>
<option>diciembre</option>
</select>
<select id="anio">
<option>2004</option>
<option>2005</option>
</select>
</body>
</html>
Saludos,