Why wouldn't you make the range dynamic instead of static? I would assume he would otherwise be going in and changing the date range every year. I'd see something more like:
$datestamp = time();
$current_year = date("Y",$datestamp);
$year = range(1900, $current_year);