Most of the form elements in the script that give you a number of choices (mostly dropdown/select types) are defined in a single place as a PHP array. If you want to remove or add items, you can just edit the appropriate variable and the change will be reflected throughout the application. Look in this file: /includes/vars.inc.php As with all PHP coding, BE CAREFUL to preserve the exact syntax used in defining the options since quotes and commas are critical to the definition. ALWAYS make a backup copy of the file before making any changes so you can revert back if your change doesn't work. |