Thanks Kristian but I'm completely lost..

I think the code:
submit: function (element)
{
var fieldone = jQuery('#jr_fieldone ').val();
var fieldtwo = jQuery('#jr_fieldtwo ').val();
var fieldthree= jQuery('#jr_fieldthree').val();
var customTitle = fieldone + ' ' + fieldtwo + ' ' + fieldthree;
jQuery('#jr_listingTitle').val(customTitle);
var form = jQuery('#jr_listingForm');
form.find('#section').val(form.find('#section_id option:selected').text());
form.find('#category').val(form.find('#cat_id option:selected').text());
jQuery('.wysiwyg_editor').RemoveTinyMCE();
jQuery(element).siblings('.jr_loadingSmall').fadeIn();
jQuery('#jr_listingForm .button').attr('disabled','disabled');
document.jr_listingForm.submit();
}
in
http://www.reviewsforjoomla.com/forum/index.php?topic=9970.0might refer to an older version of jreviews and does not seem to work for me.
I have tried what seems like every thing including just adding this part
var fieldone = jQuery('#jr_fieldone ').val();
var fieldtwo = jQuery('#jr_fieldtwo ').val();
var fieldthree= jQuery('#jr_fieldthree').val();
var customTitle = fieldone + ' ' + fieldtwo + ' ' + fieldthree;
jQuery('#jr_listingTitle').val(customTitle);
to line 466 in jreviews.js
I have looked all around this forum for this topic with no success.
Hiding the Item Title in new item creation
« on: July 24, 2008, 09:53:24 PM »
http://www.reviewsforjoomla.com/forum/index.php?topic=4571.msg23093#msg23093 <input type="button" id="submitButton" name="submitButton" value="<?php __t("Submit");?>" onclick="xajax.$('title').value = xajax.$('jr_name').value; submitListing();" class="button" />
********** Listing submit button would not function
AUTO listing Title
« on: May 11, 2012, 07:20:50 AM »
http://www.reviewsforjoomla.com/forum/index.php?topic=19814.0<script language="JavaScript" type="text/JavaScript">
<!--
function combine(form) {
form.title.value = form.jr_yourfield.value;}
</script>
**********I thought this was promising but it only worked for me only on listings that were created prior to this hack being implemented. When I tried to add a new listing after putting in place the hack, the listing submit page just locked up with a busy signal.
I'm going crazy..

Any help would be great!
Thanks in advance