Dan O posted this in response to a similar inquiry by me and it worked:
Look in your calendar_admin.pl file for a section labled:
#####################
#
# EDIT()
#
# Edit/Delete Entries
#
#####################
sub EDIT {
and following that the lines:
<select name="Year" size=1>
<option value="1997" $yearselected{1997}>1997
<option value="1998" $yearselected{1998}>1998
<option value="1999" $yearselected{1999}>1999
<option value="2000" $yearselected{2000}>2000
<option value="2001" $yearselected{2001}>2001
<option value="2002" $yearselected{2002}>2002
<option value="2003" $yearselected{2003}>2003
</select>
Try adding whatever number of years you like in a similar format.
Don't forget to chmod the file after it has been edited and uploaded. daniel