yes the best thing is to use php only when needed. You may also what to
try making simple functions for the date/month/year otions something
like this:
function day()
{ $i=1;
while ($i<32)
print "<option>$i</option>";
$i++;
}
this way you won't have to repeat it all the time...