// JavaScript Document

for (k=1;k<13;k++) {
      				if (k<10) {var l="0"+k;} else {var l=k;}
      				document.write ("<option value='"+k+"'>"+l+"</option>");
      				}
