How to Hide the "Airchat" Admin Menu

function plt_hide_airchat_menus() {
	//Hide the "Settings → Airchat" menu.
	remove_submenu_page('options-general.php', 'airchat');
}

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

Where do I put this code?