
$(document).ready(function()
{
    
    $("select#category_list").change(function () 
		{
			//alert(this.value);
			 $.ajax({
			   type: "POST",
			   url: "./artist_type_select.php",
			   data: "id="+this.value,
			   success: function(msg){
				 //alert(msg);
				 $("div#ppp_artist_type").html('');
				 $("div#ppp_artist_type").html(msg);

			   }
			 });
			
			
			//alert('hello');
        })

});
