var chap_array = new Array(
    ["7 - A Savior",'7/01'],

    ["6 - A Monster",'6/01'],

    ["5 - Crush the Co-Homeroom Teacher",'5/01'],

    ["4 - Specialist",'4/01'],

    ["3 - Find the Co-Homeroom Teacher",'3/01'],

    ["2 - Co-Homeroom Teacher",'2/01'],

    ["1 - The Two Teachers",'1/00-cover']
);
for (var i=0; i<chap_array.length; i++) {
    document.getElementById('id_chapter_1').options[i] = new Option(chap_array[i][0],chap_array[i][1]);
    if (document.getElementById('id_chapter_2')) {
        document.getElementById('id_chapter_2').options[i] = new Option(chap_array[i][0],chap_array[i][1]);
    }
}
