// JavaScript Document
function show(obj) {
no=obj.options[obj.selectedIndex].value;
count = obj.options.length;
for(i=1;i<=count;i++)
document.getElementById('HE'+i).style.display = 'none';
if(no>0)
document.getElementById('HE'+no).style.display = 'block';
}