How to Hide the "UpdaWa - the update watchdog" Admin Menu

function plt_hide_updawa_menus() {
	//Hide the "UpdaWa - the update watchdog" menu.
	remove_menu_page('updawa');
}

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

Where do I put this code?