//	市区町村セット
$(function(){
	$("#cpref").change(function () {
		if($(this).val()){
			cityGet($(this).val(),"#ccity","");
		}else{
			$("#ccity").empty().append($('<option>').attr({value:""}).text("都道府県を選んで下さい"));
		}
	});
	if($("#cpref").val()){
		cityGet($("#cpref").val(),"#ccity",$("#ccity_hidden").val());
	}
});
