To get it in the format you requested...
"CAR" + Year (e.g. 09) + 0001 and 0002
...You could follow HainKurt's suggestion... (which is basically the same as I gave you in your other thread), and then add another column called CAR_Num_Full
this would be
update MyTable set CAR_Num_Full = "CAR" & right(datepart("yyyy", Now()),2) & right(cstr(cstr("0000") & cstr(CAR_Num)),4)