ファンクション 管理画面のタイトルの文字を置き換え 外部リンクを挿入

//管理画面のタイトルの文字を置き換え 外部リンクを挿入
//クォーテーションの入れ子にポイント
add_action( 'admin_head', 'change_text' );
function change_text() {
	$echo1 = "<span>地区</span> <a href='http://www.iezo.net/tiikinavi/aichi/kasugai/' target='_blank'>中学校区</a>";
	  echo '
	  <script type="text/javascript">
	  jQuery(document).ready(function($){
	$("#cikudiv h2").html("'.$echo1.'");
		});

	  </script>
	  ';
}