When a selection is made by the user Select2 will display the text of the option by default, just like how it is displayed in a standard select box. You can override the display of the selection by setting the templateSelection option to a JavaScript function.
function template(data, container) {
return data.text;
}
$('select').select2({
templateSelection: template
});