var chap_array = new Array(
    ["6 - Chapter 6",'6/01'],

    ["5 - Chapter 5",'5/01'],

    ["4 - Chapter 4",'4/01'],

    ["3 - Chapter 3",'3/01'],

    ["2 - Chapter 2",'2/01'],

    ["1 - Chapter 1",'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]);
    }
}
