function removeRowFromTable()
{
  var tbl = document.getElementById('tabtable');
  var lastRow = tbl.rows.length;
  if (lastRow > 2) tbl.deleteRow(lastRow - 1);
}
