Or more simplyfied:
PHP Code:
echo "<option value='' SELECTED>- Select -</option>\n";
for ($i=floor(date("y")), $j=$i+10; $i < $j; ++$i)
printf("<option value='%.2d'>%.2d</option>\n", $i, $i);
But then again there are hundreds of ways you can form something like this.