/**
 * @author Imad Sader
 */
$(document).ready(function(){
	$("#branchId").change(function(){
		$("#ajaxLoader").show();
		var branchId = this.options[this.selectedIndex].value;
		$.ajax({
			type: "GET",
			url: "../businessLogic/staffGetAdminsWithBranchId.php?branchId=" + branchId,
			timeout: 10000,
			success: function(data){
				$("#ajaxLoader").hide();
				//alert(data);
				
				$("#assignId").html("");
				//for(i in data) {
				
					$("#assignId").append(data);
					
				//}
			},
			error: function(data){
			}
		});
	});
});
