rodiony4,
<!DOCTYPE html>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<style type="text/css">
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script>
$(function() {
$(".btn").on("click", function() {
$(".hid").filter(function() {
return $(".decode",this).text()
}).show()
})
});
</script>
</head>
<body>
<style type="text/css">
.hid {display:none;}
</style>
<input type="button" value="добавить/удалить текст" class="btn">
<br>
<table border="1" cellspacing="0" cellpadding="0">
<tr class="hid">
<td>Марка</td>
<td id="marka_decode" class="decode"></td>
</tr>
<tr class="hid">
<td>Модель</td>
<td id="typeGlass_decode" class="decode">test</td>
</tr>
<tr class="hid">
<td>Цвет</td>
<td id="colorGlass_decode" class="decode"></td>
</tr>
</table>
</body>
</html>