<!-- Begin
function getval(f){ 
   var which=f.tempchoice.selectedIndex; 
   var listname=f.tempchoice.options[which].value; 
   pos=listname.indexOf("$", 0);
   f.item_name.value=listname.substring(0, pos); 
   f.amount.value=listname.substring(pos + 1, listname.length);
   return true; 
} 
// End -->
