<div id="div_questions">
<p>Sector:</p>
<select id="sel_sector"></select>
<br/>
<p>Number of Records Stored:</p>
<input type="number" id="in_records" />
<p>How well does the organization know where information resides within it organization and who has access to the information?</p>
<select id="sel_identify"></select>
<br/>
<p>What measures does the organization employ to protect against a potential breach?</p>
<select id="sel_protect"></select>
<br/>
<p>What controls does your organization leverage to identify a potential breach?</p>
<select id="sel_detect"></select>
<br/>
<p>In the event of a breach, the organization has the following in order to mount a proper response:</p>
<select id="sel_respond"></select>
<br/>
<p>The ability of the organization to recover from a breach:</p>
<select id="sel_recover"></select>
<br/>
<br/>
<button id="btn_calculate">Calculate</button>
</div>
<div id="div_results" class="hide">
<p>
here are the results... blah blah blah....
</p>
<table>
<thead>
<tr>
<th></th>
<th>Not Tokenized</th>
<th>Tokenized</th>
</tr>
</thead>
<tbody>
<tr>
<td>Likelihood of a Breach involving Sensitive Data: </td>
<td id="nt_liklihood"></td>
<td id=t_liklihood></td>
</tr>
<tr>
<td>Potential Cost per Breach</td>
<td id="nt_cost"></td>
<td id=t_cost></td>
</tr>
</tbody>
</table>
</div>