You can disable the password expiration for one or more users through Powershell.
$cred = Get-Credential Connect-MSOLService -credential $cred Get-MSOLUser | Set-MsolUser -PasswordNeverExpires $true
Note that you need to have the Microsoft Online cmdlets: http://technet.microsoft.com/en-us/library/jj151805.aspx