
<!-- Begin
var time = new Date();
var year = time.getYear();
if (year < 1900) {
year = year + 1900;
}
var date = year - 104; /*change the '101' to the number of years in the past you want to show */
var future = year - 18; /*change the '100' to the number of years in the future you want to show */ 
document.writeln ("<SELECT Name='year'><OPTION value=\"\">Year");
do {
date++;
document.write ("<OPTION value=\"" +date+"\">" +date+ "");
}
while (date < future)
document.write ("</select>");
//  End -->

