Mark,
You need to calculate the number of characters to keep for each record and then extract these using the Right$() function:
Right$(Field_Name, Len(Field_Name) - 10)
Or you can use the Mid$() function to extract from character 11 to 254:
Mid$(Field_Name, 11, 254)