Do you mean changing something like ABC00001 -> ABC00002? or 0001 -> 0002?
It's going to be tricky if your ID is something like ABD00001 because you have to ignore all the characters in front of the 1 and only increment 1 by 1 = 2, etc. on the other hand if your ID was something like 01 or 02 then you can auto increment the number using SQL so something like
mysql_query("UPDATE ed_names SET c_request = c_request+1 WHERE id = 'x'");
Edit
It wouldn't take more process really all you'd have to do is something like this
<input type="text" name="card_id" value="ABC<?php $length = 5; $randomString = substr(str_shuffle("0123456789"), 0, $length); echo $randomString;?>">
which would then output something like:
<input type="text" name="card_id" value="ABC65918">
The value would then change every single time the page is reloaded of course but if you wanted to be sure you can add a script that changes the value every 5 or 10 seconds.