function fieldset(obj) {
  div = obj.parentNode.parentNode.lastChild;
  if(div.style.display == "none") {
    div.style.display = "inline";
  }
  else {
     div.style.display = "none";
  }
}