codice:
<form id="mioform">
  <input name="pacchetto" type="checkbox" id="pacchetto01" value="1" onclick="document.getElementById('info_pac01').style.display = (this.checked ? 'block' : 'none');" />
  <div id="info_pac01" style="display: none;">Testo testo testo testo testo testo</div>
  <input name="pacchetto" type="checkbox" id="pacchetto02" value="2" onclick="document.getElementById('info_pac02').style.display = (this.checked ? 'block' : 'none');"  />
  <div id="info_pac02" style="display: none;">Testo testo testo testo testo testo</div>
</form>