Поместите HTML-код в ваш HTML-документ:
<div class="tiersTables">
<span>
<a href="" rel="#overlay">Edit Tiers </a>
</span>
<table class="visible" id="newTiersTable">
<thead>
<tr>
<th>Range</th>
<th>List Price</th>
<th>Quote Price</th>
<th class="lastTh">Approval?</th>
</tr>
</thead>
<tbody>
<tr>
<td>HERE</td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
</div>
Скройте его с помощью CSS:
div.tiersTables { display:none; }
Затем, при нажатии, покажите его:
$('#submitNewTiers')click(function() {
$('.tiersTables').show();
});