You could try adding a line to /etc/rc.local that will set the desired brightness level. To edit the file, run
gksudo gedit /etc/rc.local
and add the following
echo X > /sys/class/backlight/intel_backlight/brightness
so that the end result looks like this
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
# Max vlaue seems to be 4882
echo X > /sys/class/backlight/intel_backlight/brightness
exit 0
Substitute the
X
by the desired brightness level.