/*
    Method to add stateSelect event handler which populates a city dropdown list.
    Copyright (C) 2000-2007 Kohler Company.    All Rights Reserved.
    Author: Dennis Spaag
    Date Created: 11/07/07
 */
$(function() {

    // set the onchange event of the 'states' dropdown to call the ajax function that
    // populates the cites select
    $('#stateSelect').change(
          function() {
              getCitiesForState('#stateSelect', '#citySelect', 'PROJECTS');
          }
     );

});
