function ListYear()
{
document.write('<select name=MYYear>')
var yes
for (var x = 1900; x <= 1987; x++)
   {
	document.write('<option value='+x+'>'+x+'</option>')
   }
	document.write('<option value=1988 selected>1988</option>')
for (var y = 1988; y <= 2010; y++)
   {
	document.write('<option value='+y+'>'+y+'</option>')
   }
document.write('</select>')
}
