/**
 * show_city_english()
 *
 * Controls the city pulldown based on province chosen on the english form.
 */
function show_city_english(form_element){
  form_element=form_element.value.replace(/\s/g,"-");                       // Convert spaces to dashes
  $('#sfs-splash-english-picker .city-picker').hide();                  // Hide all city pickers
  $('#sfs-splash-english-picker #edit-city-'+form_element).show();      // Display the city picker related to the picked province.
}
/**
 * show_city_french()
 *
 * Controls the city pulldown based on province chosen on the french form.
 */
function show_city_french(form_element){
  form_element=form_element.value.replace(/\s/g,"-");                       // Convert spaces to dashes
  $('#sfs-splash-french-picker .city-picker').hide();                   // Hide all city pickers
  $('#sfs-splash-french-picker #edit-city-'+form_element+'-1').show();  // Display the city picker related to the picked province.
}

