DBCC CHECKIDENT('table name', RESEED, number_you_need_to_reset )
For eg:
If your customer table is empty and wanted to reset the identity field value to 1 then use the following comand
DBCC CHECKIDENT('customer', RESEED, 0 )
So next time when you add a record the identity field value will be 1.