Index: image-edit.dev.js
===================================================================
--- image-edit.dev.js	(revision 12441)
+++ image-edit.dev.js	(working copy)
@@ -299,8 +299,7 @@
 	},
 
 	initCrop : function(postid, image, parent) {
-		var t = this, selW = $('#imgedit-sel-width-' + postid),
-			selH = $('#imgedit-sel-height-' + postid);
+		var t = this;
 
 		t.iasapi = $(image).imgAreaSelect({
 			parent: parent,
@@ -335,13 +334,20 @@
 			},
 
 			onSelectChange: function(img, c) {
-				var sizer = imageEdit.hold.sizer;
-				selW.val( imageEdit.round(c.width / sizer) );
-				selH.val( imageEdit.round(c.height / sizer) );
+				imageEdit.setSelectionInputValues(c.width, c.height);
 			}
 		});
 	},
+	
+	setSelectionInputValues : function(newwidth, newheight) {
+		var selW = $('#imgedit-sel-width-' + this.postid),
+			selH = $('#imgedit-sel-height-' + this.postid),
+			sizer = this.hold.sizer;
 
+		selW.val( this.round(newwidth / sizer) );
+		selH.val( this.round(newheight / sizer) );
+	},
+
 	setCropSelection : function(postid, c) {
 		var sel, min = $('#imgedit-minthumb-' + postid).val() || '128:128',
 			sizer = this.hold['sizer'];
@@ -562,6 +568,7 @@
 
 				this.iasapi.setSelection( sel.x1, sel.y1, sel.x2, r );
 				this.iasapi.update();
+				this.setSelectionInputValues(sel.width, r - sel.y1);
 			}
 		}
 	}
