Index: /CKEditor/trunk/CHANGES.html
===================================================================
--- /CKEditor/trunk/CHANGES.html	(revision 5835)
+++ /CKEditor/trunk/CHANGES.html	(revision 5836)
@@ -51,4 +51,5 @@
 		<li><a href="http://dev.ckeditor.com/ticket/5717">#5717</a> : Removed the scayt_contextMenuOntop setting and the SCAYT context menu options are always on top.</li>
 		<li><a href="http://dev.ckeditor.com/ticket/5956">#5956</a> : [FF] It was impossible to create an editor inside an hidden container.</li>
+		<li><a href="http://dev.ckeditor.com/ticket/5753">#5753</a> : It was impossible to have a default value for the name field in the select dialog.</li>
 	</ul>
 	<h3>
Index: /CKEditor/trunk/_source/plugins/forms/dialogs/select.js
===================================================================
--- /CKEditor/trunk/_source/plugins/forms/dialogs/select.js	(revision 5835)
+++ /CKEditor/trunk/_source/plugins/forms/dialogs/select.js	(revision 5836)
@@ -162,10 +162,10 @@
 			if ( isInsertMode )
 			{
-				editor.insertElement(element);
+				editor.insertElement( element );
 				if ( CKEDITOR.env.ie )
 				{
 					var sel = editor.getSelection(),
 						bms = sel.createBookmarks();
-					setTimeout(function ()
+					setTimeout(function()
 					{
 						sel.selectBookmarks( bms );
@@ -194,5 +194,5 @@
 						{
 							if ( name == 'clear' )
-								this.setValue( '' );
+								this.setValue( this.default || '' );
 							else if ( name == 'select' )
 							{
