How to Hide the "AMS Google Webmaster Tools" Admin Menu

function plt_hide_ams_google_webmaster_tools_menus() {
	//Hide the "Settings → AMS Google Webmaster Tools" menu.
	remove_submenu_page('options-general.php', 'amsgwmt_webmaster_tools');
}

add_action('admin_menu', 'plt_hide_ams_google_webmaster_tools_menus', 11);

Where do I put this code?