function get_allowed1()
{
	new Ajax.Request( 'administration/index_allowed.php', {
		method: 'post',
		parameters: {job: "load"					
				},
		onSuccess: function(response)
	{
		var res = response.responseText;

		document.getElementById('allowed_hidden1').value = res;
	}
  } );
}

