The db table jobClass has three columns: classId, className, hrRate there are hidden fields on the form for the values which are not user input.
After further digging, I found this 'Helper Class' for javascript http://www.yiiframework.com/doc/api/1.1/CJavaScript
Code:
<!-- STEP ONE -- job class -->
<div class="row">
<?php echo $form->labelEx($ServiceRequest,'className'); ?>
<?php echo $form->dropDownList($ServiceRequest,'className',$ServiceRequest->classOptions, array('empty' => ('Select Job Type' ))); ?></p>
<?php echo $form->error($ServiceRequest,'className'); ?>
</div><!-- eof step one -->
<!-- STEP TWO -- selection listbox -->
<div class="row">
<?php echo $form->labelEx($ServiceRequest,'selection'); ?>
<?php echo CHtml::activeListBox($ServiceRequest, 'selection',
CHtml::listData(ServiceItem::model()->findAllbySql(
'SELECT itemId, CONCAT(itemId, ". ", itemName) as listBoxData FROM serviceItem'),'itemId', 'listBoxData'), array('empty'=>'shift-key select multiple','prompt'=>'Select All that Apply', 'multiple'=>'multiple','style'=>'width:auto; height:138px;' )); ?>
<?php echo $form->error($ServiceRequest,'selection'); ?>
</div>
</div><!-- eof step two -->
<!-- step three visitor info and comments, captcha were removed for breivity -->
<!-- HIDDEN FIELDS for calculations -->
<div class="row">
<?php echo $form->hiddenField($VisitorInfo,'submitDate'); ?>
<?php echo $form->hiddenField($ServiceRequest,'hrRate',array('size'=>5,'maxlength'=>5)); ?>
<?php echo $form->hiddenField($ServiceRequest,'totalEstTime',array('size'=>5,'maxlength'=>5)); ?>
<?php echo $form->hiddenField($ServiceRequest,'jobEst',array('size'=>5,'maxlength'=>5)); ?>
</div><!-- eof hidden fields -->
<div class="row buttons">
<?php echo CHtml::submitButton($ServiceRequest->isNewRecord ? 'Send Request' : 'Save'); ?>
</div>
<!-- ESTIMATE DISPLAY TABLE -->
<TABLE summary="This table represents the estimated charges for services selected on the Service Request Form. Total estimated time multiplied by the hour rate.">
<CAPTION>Service Estimate</CAPTION>
<TR>
<TH id="t1">Items</TH>
<TH id="t2">Time Est</TH>
<TR>
<TD headers="t1"><? echo $ServiceRequest->model($SelectedItem); ?></TD>
<TD headers="t2">totalEstTime</TD>
<TR>
<TH id="t1">Hour Rate</TH>
<TH id="t2">Total Est</TH>
<TR>
<TD headers="t1">hrRate</TD>
<TD headers="t2">jobEst</TD>
</TABLE>
<?php $this->endWidget(); ?>
</div>
and,... thanks WG, for your efforts!