$(document).ready(function() {
  $("select#to_email").change(function(){
	var selectEditor = $("option:selected", "select#to_email").text();
	$(".editorName").text(selectEditor);
  })
});
