$(document).ready(function() {
  $('#state').removeClass('jsdisabled');
  $('#ccstate').removeClass('jsdisabled');
  $('#state').addClass('required');
  $('#ccstate').addClass('required');
  
  var frm = document.frmdemo;
  var scountry = frm.country.options[frm.country.selectedIndex].value;
  var cccountry = frm.cccountry.options[frm.cccountry.selectedIndex].value;

  if (frm.state.length == 0)
  {    
	setShipState(scountry);
  }

  if (frm.ccstate.length == 0)
  {
    setBillState(cccountry);
  }
$('#frmdemo').validate();
  
  $('#copyship').click(function(){
    	if ($(this).attr('checked'))
		{
    
		frm.cccountry.selectedIndex = frm.country.selectedIndex;
		frm.ccfirstname.value = frm.firstname.value;
		frm.cclastname.value = frm.lastname.value;
		frm.cccompany.value = frm.company.value;
		frm.ccposition.value = frm.position.value;
		frm.ccaddress1.value = frm.address1.value;
		frm.ccaddress2.value = frm.address2.value;
		frm.cccity.value = frm.city.value;
		frm.cczipcode.value = frm.zipcode.value;
		
		setBillState(frm.cccountry.options[frm.cccountry.selectedIndex].value)
		frm.ccstate.selectedIndex = frm.state.selectedIndex;
		
		}
	else
		{
		frm.cccountry.selectedIndex = 0;
		frm.ccfirstname.value = '';
		frm.cclastname.value = '';
		frm.cccompany.value = '';
		frm.ccposition.value = '';
		frm.ccaddress1.value = '';
		frm.ccaddress2.value = '';
		frm.cccity.value = '';
		frm.cczipcode.value = '';
		
		setBillState('United States')
		frm.ccstate.selectedIndex = 0;
		}
  
  });//end copyship click
  $(".ship :input[type='text']:first").focus();
});

