/*
 
 Requires the inclusion of JQuery library - calls initatilization function.
 
*/

jQuery( fixit );

function fixit() {
	
  // Force country selector to US and Canada
  jQuery('#country').empty().append('<option value=\"US\" selected=\"selected\">United States</option><option value=\"CA\">Canada</option>');


  // Replace the paragraph in #myDiv1 with a new paragraph
  var obj_select = "<select name=\"custom1\"> \
    <option value=\"M Large\">Men\'s Large</option> \
    <option value=\"M X-Large\">Men\'s X-Large</option> \
    <option value=\"M XX-Large\">Men\'s XX-Large</option> \
	<option value=\"M Medium\">Men\'s Medium</option> \
    <option value=\"W Small\">Women\'s Small</option> \
    <option value=\"W Medium\">Women\'s Medium</option> \
    <option value=\"W Large\">Women\'s Large</option> \
   </select>"; 
  jQuery('input[name=custom1]').replaceWith( obj_select );
}


