I like to make select box's like this:
echo "<select>";
for($i=0;$i<12;$i++)
{
$stamp = mktime(0,0,0,date("m")+$i,1,date("Y"));
echo "<option value=\"".date("m",$stamp)."\">";
echo date("M",$stamp);
echo "</option>\n";
}
echo "</select>";
that will give you a select box with each month, with the current month being the first option. It won't be obvious because it's january, but if you change:
$stamp = mktime(0,0,0,date("m")+$i,1,date("Y"));
to:
$stamp = mktime(0,0,0,6+$i,1,date("Y"));
you will see it starts in june