var chap_array = new Array(
    ["9 - One More Weakness",'9'],

    ["8 - First Flight",'8'],

    ["7 - The Shrimp's Pride",'7'],

    ["6 - A Small Rebel Enters",'6'],

    ["5 - The Duck's Determination",'5'],

    ["4 - Momoharu's Wings",'4'],

    ["3 - Those With No Talent",'3'],

    ["2 - Ugly Duckling",'2'],

    ["1 - Basketball Shoes and Boys",'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]);
    }
}
