function showhideOption1(id, action) {
       if (action=="hide") {
            document.getElementById('otherOption1').style.display = "none";
       } else {
            document.getElementById('otherOption1').style.display = "block";
       }
}

function showhideOption2(id, action) {
       if (action=="hide") {
            document.getElementById('otherOption2').style.display = "none";
       } else {
            document.getElementById('otherOption2').style.display = "block";
       }
}



