jQuery(document).ready(function(){

	// Country Change & Show States Area
	jQuery('#WorkCountry').change(function(){
		if(jQuery(this).val() == 'AU')
		{
			jQuery('#WorkStateArea').css({
				display:'block'
			});
		} else {
			jQuery('#WorkStateArea').css({
				display:'none'
			});
		}
	});
	
	// Country Change & Show States Area
	jQuery('#WorkCountry').change(function(){
		if(jQuery(this).val() != 'AU')
		{
			jQuery('#CAT_Custom_141659').val('Overseas');
		} else {
			jQuery("#CAT_Custom_141659").val(jQuery(this).find('option:selected').text());
		}
	});
	
	// Populate Country Fields
	jQuery("#WorkCountry").blur(function() {
		jQuery("#HomeCountry").val(jQuery(this).val());
	//	jQuery("#CAT_Custom_141659").val(jQuery(this).find('option:selected').text());
	});

	// Populate State Fields
	jQuery("#WorkState").blur(function() {
		jQuery("#HomeState").val(jQuery(this).val());
		jQuery("#CAT_Custom_141660").val(jQuery(this).val());
	});

});
