var oldElm = null;
function ShowHide(sel){
  if(oldElm)
    oldElm.style.display = 'none';
  oldElm = document.getElementById(sel.value);
  oldElm.style.display = 'block';
}
