<script>
var idform = '#rec61293394'; //Нужная фомра
$('.t-submit').click(function() {
setTimeout(function() {
$(idform + ' ' +'.t-input-error:eq(0)').html('Введите кол-во людей!');
$(idform + ' ' +'.t-input-error:eq(1)').html('Будет ли кот, собака и т.д.?');
$(idform + ' ' +'.t-input-error:eq(2)').html('Нужны ли особые опции?');
$(idform + ' ' +'.t-input-error:eq(3)').html('Вы должны соглашаться с инструктором!');
}, 50);
});
</script>