Hi Mike,
no, I wouldn't use javascript to do this. The templates pretty much let you do this without resorting to non-clarion code.
For both the YearOfManufacture, and Make fields,do the following;
on the "client side" tab,
a) tick on "send new value to server".
b) add AST:Description to the "Reset" Field list
c) click on the "server code" button.
d) find the right field (Year or Make) and add the following code;
AST:Description = AST:YearOfManufacturer & ' ' & AST:Make
p_web.SetSessionValue('AST:Description',AST:Description)
Now, on the form, if either the Make or Manufacturer field changes, then the Description field will change as well.
Cheers
Bruce