var chap_array = new Array(
    ["5 - Boy Under the Moon",'5/01'],

    ["4 - Jack the Ripper in the Imperial Capital - Part Three",'4/01-02'],

    ["3 - Jack the Ripper in the Imperial Capital - Part Two",'3/01'],

    ["2 - Jack the Ripper in the Imperial Capital - Part One",'2/01'],

    ["1 - To Tokyo",'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]);
    }
}
