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() {
var eurocode = $('#eurocode').val();
var decode1 = {};
decode1['Q'] = 'Текст 1'; // один символ
decode1['WR'] = 'Текст 2'; // больше одного символа
decode1['YUJ'] = 'Текст 3'; // больше одного символа
$('#marka_decode').text(decode1[eurocode]||'не определено')
})
});
</script>
</head>
<body>
<input id="eurocode" value="" type="text">
<input type="button" value="go" class="btn">
<br><br>
<table id="tab_decode" class="hid" border="1">
<tr>
<td>Марка и модель а/м</td>
<td id="marka_decode"></td>
</tr>
</table>
</body>
</html>