// JavaScript Document
with(document){
			// creates a list of Months in the list box
			for (var n=1;n<=31;n++){
				write("<option value=");
				write(n);
				write(">");
				write(n);
				write("</option>");
			}
		}