get value from another textinput and set is to another using jquery
// If you have input value for hours and for the money(which is readonly) them this works
$("#hours").change(function(){
let times = $('#hours').val();
$('#amount').val(20000 * times);
});