function display(obj,id1){
        txt = obj.options[obj.selectedIndex].value;
        document.getElementById(id1).style.display = 'none';
        if ( txt.match(id1) ) {
                document.getElementById(id1).style.display = 'inline';
        }
        if ( !txt.match(id1) ) {
                document.getElementById(id1).style.display = 'none';
        }
}

