<select id="type"> <option value="1">type 1</option> <option value="2">type 2</option> </select> <textarea id="Description"></textarea>
CKEDITOR.replace('Description',{filebrowserBrowseUrl : '/path/to/browser.php'});
$("#type").on("change",function(){
var t = $(this).val();
CKEDITOR.instances.Description.destroy();
CKEDITOR.replace('Description',{filebrowserBrowseUrl : '/path/to/browser.php?type=' + t});
});
http://jsfiddle.net/rq6hG/
