diff --git a/src/jquery.jeditable.js b/src/jquery.jeditable.js
index 62077b4..b96869d 100644
--- a/src/jquery.jeditable.js
+++ b/src/jquery.jeditable.js
@@ -675,7 +675,9 @@ var _supportInType = function (type) {
continue;
}
- var option = $('').val(key).append(value);
+ if (key !== 'selected') {
+ var option = $('').val(key).append(value);
+ }
// add the selected prop if it's the same as original or if the key is 'selected'
if (key === 'selected' || key === $.trim(original.revert)) {