function onChangeProgDescription(prog_id){
	    var pid = $(prog_id).val();
		var sid = $('[name=intSchool_Id]').val();
		$.ajax({
		        type: "POST",
		        url : "/ajax/getPgmDescription_AJAX.php",
		        data: {PID:pid,SID:sid},
		        dataType: "html",
		        success: function(data){
					if (data != ''){
		           
					if($('#tabimages').length){
                    	$('aside div #tabimages').parent().hide();
                    	$('aside > div').first().show();
                    }

                    $('#progdesc1').html(data).show();
					$('#rfi_tabcontent1').hide();
					}else {
					$('#rfi_tabcontent1').show();
					$('#progdesc1').hide();
				   }
					
		        },
		        error: function(msg){
		            alert("An Error: " + msg );
		        }
		});
}
function getUOPProgrampopulate(prog_id){

		$.ajax({
		        type: "POST",
		        url : "/ajax/getUOPprogram_AJAX.php",
		        data:{ProgID:prog_id},
		        dataType: "html",
		        success: function(data){
					if (data != '')
		               $('#PI').html(data);
		        },
		        error: function(msg){
		            alert("An Error: " + msg );
		        }
		});

}

