var chap_array = new Array(
    ["7 - A Soldier's Respite",'7/01'],

    ["6 - When She Changes into a Swimsuit",'6/01'],

    ["5 - Rain",'5/01'],

    ["4 - Kemeko Goes to School",'4/01'],

    ["3 - Wars Amongst the Kobayashis",'3/01'],

    ["2 - Restart",'2/01'],

    ["1 - Steel Bride",'1/00']
);
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]);
    }
}
