That's the way an Autonumber/Identity field works. Every time you add a new record the field automatically incremented. The number is not reset if you delete a row. If you don't want that behavior then you'll have to make the field type an Integer type and do the increment yourself via code.

Edit - Geeze, I must type slow. Two people answered while I was answering..