function showHideTable(theTable)
{
if (document.reservation.Hear.value == 'Other')
{
document.getElementById(theTable).style.display = 'block';
document.reservation.other.focus();
}
else
{
document.getElementById(theTable).style.display = 'none';
}
}