You said you want to rewrite from http://website.com/chkreg.php?checkreg=34324234 to http://website.com/checkreg/34324234, but your rewrite rule is doing the opposite.
Use this:
RewriteRule ^chkreg.php?checkreg=(.*) /checkreg/$1 [L]
Edit: If you need further debugging information from mod_rewrite then add the following:
RewriteLog /your/path/rewrite.log
RewriteLogLevel 3
Taylor Leese
2010-02-06 00:13:19