//以下、2箇所を書き換えてください

var month_list = new Array(
    "200801", "200802", "200803" //書き換えてください
);

month_name = new Array();
//書き換えてください--ここから
    month_name["200801"] = "2008年01月";
    month_name["200802"] = "2008年02月";
    month_name["200803"] = "2008年03月";
//書き換えてください--ここまで





//これより下は触らないでください。
    window.document.form.date.length = month_list.length + 1;
    
    for(i = 0; i < month_list.length; i++){
        window.document.form.date.options[i+1].value = month_list[i];
        window.document.form.date.options[i+1].text = month_name[month_list[i]];
    }

