Александр83,
<!DOCTYPE html>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<script>
window.addEventListener('DOMContentLoaded', function() {
var p = document.querySelectorAll('p.temp');
[].forEach.call(document.querySelectorAll('input.temp'), function(item,i) {
item.addEventListener('input', function() {
p[i].textContent = item.value;
});
});
});
</script>
</head>
<body>
<input id="proso_engine_02" value="1" class="temp"/>
<input id="proso_table_02" value="2" class="temp"/>
<p class="temp">1</p>
<p class="temp">2</p>
</body>
</html>