<!--

 /** Replace the Select tag for month with the following SCRIPT tag.
   *
   * <SCRIPT LANGUAGE="JavaScript" SRC="<path to incl folder>/incl/sel_mm.js"></SCRIPT>
  **/


 /**
   * Syntax  is       document.write('<text here>');
   *
   * Use Single Quotes only to Start and End the Text. Donot use SingleQuotes in between, 
   * For attribute values of HTML tags Use DoubleQuotes only.
  **/

document.write('<select name="month" id="month">');
document.write('<option value="jan" >January</option>');
document.write('<option value="feb" >February</option>');
document.write('<option value="mar" selected>March</option>');
document.write('<option value="apr" >April</option>');
document.write('<option value="may" >May</option>');
document.write('<option value="jun" >June</option>');
document.write('<option value="jul" >July</option>');
document.write('<option value="aug" >August</option>');
document.write('<option value="sep" >September</option>');
document.write('<option value="oct" >October</option>');
document.write('<option value="nov" >November</option>');
document.write('<option value="dec" >December</option>');
document.write('</select>'); 

 //-->