Index: post.dev.js
===================================================================
--- post.dev.js	(revision 16913)
+++ post.dev.js	(working copy)
@@ -325,6 +325,14 @@
 			if ( id && t.parents('#taxonomy-'+taxonomy).length )
 				$('#in-' + taxonomy + '-' + id + ', #in-popular-' + taxonomy + '-' + id).attr( 'checked', c );
 		});
+        
+        $('#newcategory', this).keypress( function(e) {
+            code = (e.keyCode ? e.keyCode : e.which);
+            if (code == 13){
+                $('#category-add-submit').trigger('click');
+                e.preventDefault();
+            }
+        });
 
 	}); // end cats
 
