Hi,
Use the mid(STRING, STARTPOSITION, ENDPOSITION) function.
In your case to remove the first 11 characters it would be:
<%
// If endposition attribute is not declared, will just read to the end...
// ...of the string
response.write mid(your_string, 12)
%>
Hope this helps!