Index: /FCKeditor/trunk/editor/_source/classes/fckspecialcombo.js
===================================================================
--- /FCKeditor/trunk/editor/_source/classes/fckspecialcombo.js	(revision 740)
+++ /FCKeditor/trunk/editor/_source/classes/fckspecialcombo.js	(revision 741)
@@ -77,4 +77,15 @@
 	if ( typeof( this.FCKSpecialCombo.OnSelect ) == 'function' )
 		this.FCKSpecialCombo.OnSelect( this.FCKItemID, this ) ;
+}
+
+FCKSpecialCombo.prototype.ClearItems = function ()
+{
+	if ( this.Items )
+	{
+		for ( var key in this.Items )
+			this.Items[key] = null ;
+	}
+	while (this._ItemsHolderEl.firstChild)
+		this._ItemsHolderEl.removeChild(this._ItemsHolderEl.firstChild);
 }
 
