function resetCountryList() {
	$(".cformInputRequired").css("background-color","");
	$("input:not(input[type=hidden])").val("");
	$("textarea").val("");
}	
$(document).ready(function() {	
	$("#countryList").load("/content/select_country.php", function(){
		$(".cformInputRequired").focusin(function() {
			$(this).css("background-color","");
		});	
	});				
	$("#countryList" ).dialog({
		autoOpen: false,
		modal: true,
		resizable: false,
		width: 700
	});	
	$("#btnCountry").click(function() {	
		$("#countryList").dialog("open");	
	});				
});
