I haven't test that myself, but it seems
there's more than one solution to this
problem :
1)
ALTER TABLE tbl_name AUTO_INCREMENT = 1
will reset the counter to the current maximum
value
2)
SET INSERT_ID = (number)
set the value to be used by the next INSERT
(but you need to know the number of course)