function highlight(field) {
       field.focus();
       field.select();
}

jQuery(document).ready(function(){
  jQuery("#more").click(function () {
      jQuery(".open").toggle();
    });

})
