$(document).ready(function() { 
	if($("#typeOfMove2").val() == "international") {
		$(".format").html("City, Country, ZIP");
	} 

	$("#typeOfMove").change(function() { 
		if($("#typeOfMove").val() == "international") {
			$(".format").html("City, Country, ZIP");
		} else {
			$(".format").html("City, ST, ZIP");
		}
	});
});
