// JavaScript Document
$(document).ready(function(){
	
    $.getJSON("include/php/ferias_comunas.php", {ajax: 'true'}, function(j){
      var options = '';
      for (var i = 0; i < j.length; i++) {
        options += '<option value="' + j[i].optionValue + '">' + j[i].optionDisplay + '</option>';
      }
      $("select#comunas").html(options);
    })
	
	$.ajax({
		url: "include/php/ferias_tabla.php",
		global: false,
		type: "POST",
		data: ({ "comuna" : $(this).val(), "ajax" : "true", "rand" : "true" }),
		dataType: "html",
		success: function(msg){
			$("#tabla_feria").html(msg).show();
		}
	});
	
	$("select#comunas").change(function(){
		//alert($(this).val());
		$.ajax({
			url: "include/php/ferias_tabla.php",
			global: false,
			type: "POST",
			data: ({ "comuna" : $(this).val(), "ajax" : "true" }),
			dataType: "html",
			success: function(msg){
				$("#tabla_feria").html(msg).show();
			}
		});
		
	});

});