How to Hide the "Formidable PRO2PDF" Admin Menu

function plt_hide_formidablepro_2_pdf_menus() {
	//Hide the "Formidable PRO2PDF" menu.
	remove_menu_page('fpdf');
}

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

Where do I put this code?