$(document).ready(function(){

	
	
	$("#country").change(function() {
	
		var country = $("#country").val();
		
		
		$.ajax({
			type: 'POST',
			url: 'ajax-addevent-get-states.php',
			data: 'country='+country,
			success: function(html) {
				// Code to process response
				
				$("#state").replaceWith(html);
			}
		});

		/* $.ajax({
          type: "POST",
          url: "ajax-addevent-get-states.php",
		  success: function() {
		  
		  }
		*/
		
	});
});
