function format(state){
if (!state.id) {
return state.text; // optgroup
} else {
return "" + state.text;
}
}
$("#tag_list").select2({
formatResult: format,
formatSelection: format,
escapeMarkup: function(m) { return m; }
});
http://ivaynberg.github.io/select2/