I tried adding the following to the osclass wizards theme functions.php but did not work
<?php
function cust_move_jobs_attributes() { ?>
<script type="text/javascript">
$("#plugin-hook").change(function(){
var divJobAttributes = $("div.jobs-attributes");
$("<div></div>").attr('id', 'moved_jobs_attributes').css('padding', '10px 0 20px').insertBefore("div.location");
$("#moved_jobs_attributes").append(divJobAttributes.prev("h2")).append(divJobAttributes);
});
</script>
<?php }
$section = Rewrite::newInstance()->get_section();
if ($section == 'item_add' || $section == 'item_edit') osc_add_hook('footer', 'cust_move_jobs_attributes');
function cust_trigger_plugin_hook_jobs_attributes() { ?>
<script type="text/javascript">
$("#moved_jobs_attributes").remove();
$("#plugin-hook").change();
</script>
<?php }
osc_add_hook('item_form', 'cust_trigger_plugin_hook_jobs_attributes', 1);
osc_add_hook('item_edit', 'cust_trigger_plugin_hook_jobs_attributes', 1);
?>