jQuery.noConflict();
jQuery(document).ready(function(){
    /*jQuery("#town_id").hide();*/
 
    jQuery("#county_id").change( function() {
        /*jQuery("#town_id").hide();*/
        /*jQuery("#town_id").html('Retrieving ...');	  */
		/*alert(jQuery(this).val());*/
        jQuery.ajax({
            type: "POST",
            data: "data=calreftownwithcounty-" + jQuery(this).val(),
            url: "http://www.theocelot.co.uk/modules/extcal/ajax_functions.php",
            success: function(msg){
                if (msg != ''){
                    jQuery("#town_id").html(msg).show();
					jQuery("#venue_id").html("<option value='0' selected='selected'>All Venues</option>").show();
                }
                else{
                    jQuery("#result").html('<em>No towns to display</em>');
                }
            }
        });	  

    });


    jQuery("#town_id").change( function() {
        /*jQuery("#town_id").hide();*/
        /*jQuery("#town_id").html('Retrieving ...');	  */
		/*alert(jQuery(this).val());*/
        jQuery.ajax({
            type: "POST",
            data: "data=calrefvenuewithtown-" + jQuery(this).val(),
            url: "http://www.theocelot.co.uk/modules/extcal/ajax_functions.php",
            success: function(msg){
                if (msg != ''){
                    jQuery("#venue_id").html(msg).show();
                    /*jQuery("#result").html('');*/
                }
                else{
                    jQuery("#venue_id").html("No venues").show()
                }
            }
        });
    });
		
});
