This can only be done through a calculation field.
If you have SSfield (where the users are going to enter the SS)
You have to create a calculated field cSSfield that contains the following formula:
Left(SSfield, 3) & "-" & Middle(SSfield, 4,2) & "-" & Right(SSfield,4)
In...