In ImageTargetController.cs add:
public AudioClip sonido;
AudioSource reproductor;
...
protected override void Start()
{
if (reproductor == null) reproductor = gameObject.AddComponent<AudioSource>();
.....
}
....
protected override void Start()
{
reproductor.clip = sonido;
reproductor.Play();
}