<script>
$(document).ready(function() {
$('#status, #jobtype').on("change", function(){
var jobtype = FormUtil.getValue("jobtype");
var status = FormUtil.getValue("status");
$('#combine').val(jobtype + status).change();
});
});
</script>
or
<style>
.form-cell-value label, .subform-cell-value label {
float: none;
width: 100%;
}
<\style>