$(document).ready(function(){
	/*$("#add a").hover(

		//$.post("index.php?controller=directory&action=states2cities",
		//	{ state: state  },
		//	function(response){
		//		$("#listcities").html(response);
	*/
    $("#state").change(function () {
        var state = $("#state").attr("value");
		
		$.post("index.php?controller=directory&action=states2cities",
			{ state: state  },
				function(response){
					$("#listcities").html(response);
				}
			);

        })
        .change();

	

})	



