// JavaScript Document
function writeMonthOptions()
{
  document.write('<select id="q_travel_date" name="Month" class="formlist">');
      
    
	for (monthCounter = 0; monthCounter < Months.length; monthCounter++)
	{
	
	if( monthCounter == d.getMonth() ) { document.write('<option selected="selected" value=' + (monthCounter+1) + '>' + Months[monthCounter])};
	document.write('<option value=' + Months[monthCounter] + '>' + Months[monthCounter]);
	}
		 document.write("</select>");
}

function writeYearOptions()
{

	document.write('<select name="Year" class="formlist">');
	for (yearCounter = 0; yearCounter < Years.length; yearCounter++)
	{
		 document.write('<option value=' +Years[yearCounter]+ '>' + Years[yearCounter]);
	}
	 document.write('</select>');
}