var chap_array = new Array(
    ["8 - Below the Mistletoe",'8'],

    ["7 - The Thorns of the Rose",'7'],

    ["6 - Rendezvous with Barairo",'6'],

    ["5 - Where Love Flows",'5'],

    ["4 - When the Tiger Roars",'4'],

    ["3 - House of Thorns",'3'],

    ["2 - Barairo's Life",'2'],

    ["1 - My Little Kitty",'1']
);
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]);
    }
}
