Drupal form_alter hook not working
If you are using drupal 6 make sure you are using the proper parameters for the form_alter hook:
function modulename_form_alter(&$form, $form_state, $form_id) {
In drupal 5
function hook_form_alter($form_id, &$form) {The above tip is for module developers